home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / consolehelp.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  78 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # Modifications by Tenable Network Security :
  5. # -> Check for an existing .jsp file, instead of /default.jsp
  6. # -> Expect a jsp signature
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(11724);
  14.  script_bugtraq_id(1518);
  15.  script_version ("$Revision: 1.5 $");
  16.  script_cve_id("CVE-2000-0682");
  17.  
  18.  
  19.  name["english"] = "WebLogic source code disclosure";
  20.  name["francais"] = "WebLogic source code disclosure";
  21.  script_name(english:name["english"], francais:name["francais"]);
  22.  
  23.  desc["english"] = "
  24. There is a bug in the Weblogic web application.  Namely,
  25. by inserting a /ConsoleHelp/ into a URL, critical source code
  26. files may be viewed.
  27.  
  28. Solution : See http://developer.bea.com/alerts/security_000731.html 
  29.  
  30. Risk factor : High";
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Checks for WebLogic file disclosures ";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO); 
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  43.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  44.  family["english"] = "CGI abuses";
  45.  family["francais"] = "Abus de CGI";
  46.  script_family(english:family["english"], francais:family["francais"]);
  47.  script_dependencie("find_service.nes", "no404.nasl");
  48.  script_require_ports("Services/www", 80);
  49.  exit(0);
  50. }
  51.  
  52. #
  53. # The script code starts here
  54. #
  55.  
  56. include("http_func.inc");
  57. include("http_keepalive.inc");
  58.  
  59. port = get_http_port(default:80);
  60.  
  61. if(!get_port_state(port))exit(0);
  62.  
  63. jspfiles = get_kb_list(string("www/", port, "/content/extensions/jsp"));
  64.  
  65. if(isnull(jspfiles))jspfiles = make_list("default.jsp");
  66. else jspfiles = make_list(jspfiles);
  67.  
  68. cnt = 0;
  69.  
  70. foreach file (jspfiles)
  71.  req = http_get(item:"/ConsoleHelp/" + file, port:port);
  72.  res = http_keepalive_send_recv(port:port, data:req);
  73.  if( "<%" >< res && "%>" >< res ) { security_hole(port); exit(0); }
  74.  cnt ++;
  75.  if(cnt > 10)exit(0);
  76. }
  77.